home *** CD-ROM | disk | FTP | other *** search
- #ifndef _PSPAGER_H
- #define _PSPAGER_H
- /*
- ** $VER: pspager.h 1.0 (15.4.94)
- **
- ** General definitions for pspager.
- **
- ** (C) Copyright 1994 Rainer Koppler
- */
-
-
- /* should be defined by using the -D option of cc to enhance portability ! */
- #ifndef PSP_LIBDIR
- #ifdef AMIGA
- #define PSP_LIBDIR "S:"
- #else
- #define PSP_LIBDIR "/usr/local/lib"
- #endif
- #endif
-
- /* missing ANSI declarations for GNU-C */
- #ifdef __GNUC__
- /* stdio.h */
- extern int puts(char *);
- /* string.h */
- extern void *memset(void *, int, size_t);
- /* time.h */
- extern time_t time(time_t *);
- extern size_t strftime(char *, size_t, const char *, const struct tm *);
- #endif
-
-
- #endif /*_PSPAGER_H*/
-